home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 10 - 1994 / 10.09 Sep 94 / Getting Started / CJunior.h < prev    next >
Encoding:
Text File  |  1994-08-19  |  323 b   |  26 lines  |  [TEXT/R*ch]

  1. //CJunior.h
  2.  
  3. #ifndef __CJunior__
  4. #define __CJunior__
  5.  
  6. #ifndef __CPops__
  7. #include "CPops.h"
  8. #endif
  9.  
  10.  
  11. //----------------------------------  CJunior:CPops
  12.  
  13. class CJunior : public CPops
  14. {
  15. // Data members...
  16.     protected:
  17.         int            juniorDataMember;
  18.  
  19. // Member functions...
  20.     public:
  21.                     CJunior();
  22.         virtual    ~CJunior();
  23. };
  24.  
  25. #endif
  26.